home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / program / gcc / ixemul-4.lha / ixemul-41.4 / include / search.h < prev    next >
C/C++ Source or Header  |  1994-02-23  |  320b  |  14 lines

  1. #ifndef _SEARCH_H
  2. #define _SEARCH_H
  3.  
  4. /* search.h -- declarations for POSIX/SVID-compatible search functions */
  5.  
  6. /* HSEARCH(3C) */
  7. typedef struct entry { char *key, *data; } ENTRY;
  8. typedef enum { FIND, ENTER } ACTION;
  9.  
  10. /* TSEARCH(3C) */
  11. typedef enum { preorder, postorder, endorder, leaf } VISIT;
  12.  
  13. #endif /* _SEARCH_H */
  14.